home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / zcolor.c < prev    next >
C/C++ Source or Header  |  1997-07-08  |  6KB  |  243 lines

  1. /* Copyright (C) 1989, 1992, 1993, 1994, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* zcolor.c */
  20. /* Color operators */
  21. #include "ghost.h"
  22. #include "errors.h"
  23. #include "oper.h"
  24. #include "estack.h"
  25. #include "ialloc.h"
  26. #include "igstate.h"
  27. #include "iutil.h"
  28. #include "store.h"
  29. #include "gxfixed.h"
  30. #include "gxmatrix.h"
  31. #include "gzstate.h"
  32. #include "gxdevice.h"
  33. #include "gxcmap.h"
  34. #include "icolor.h"
  35.  
  36. /* Import the 'for' operator */
  37. extern int
  38.   zfor_fraction(P1(os_ptr));
  39.  
  40. /* Imported from gsht.c */
  41. void gx_set_effective_transfer(P1(gs_state *));
  42.  
  43. /* Define the number of stack slots needed for zcolor_remap_one. */
  44. const int zcolor_remap_one_ostack = 4;
  45. const int zcolor_remap_one_estack = 3;
  46.  
  47. /* - currentalpha <alpha> */
  48. private int
  49. zcurrentalpha(register os_ptr op)
  50. {    push(1);
  51.     make_real(op, gs_currentalpha(igs));
  52.     return 0;
  53. }
  54.  
  55. /* - currentgray <gray> */
  56. private int
  57. zcurrentgray(register os_ptr op)
  58. {    push(1);
  59.     make_real(op, gs_currentgray(igs));
  60.     return 0;
  61. }
  62.  
  63. /* - currentrgbcolor <red> <green> <blue> */
  64. private int
  65. zcurrentrgbcolor(register os_ptr op)
  66. {    float par[3];
  67.  
  68.     gs_currentrgbcolor(igs, par);
  69.     push(3);
  70.     make_floats(op - 2, par, 3);
  71.     return 0;
  72. }
  73.  
  74. /* - currenttransfer <proc> */
  75. private int
  76. zcurrenttransfer(register os_ptr op)
  77. {    push(1);
  78.     *op = istate->transfer_procs.colored.gray;
  79.     return 0;
  80. }
  81.  
  82. /* - processcolors <int> - */
  83. /* Note: this is an undocumented operator that is not supported */
  84. /* in Level 2. */
  85. private int
  86. zprocesscolors(register os_ptr op)
  87. {    push(1);
  88.     make_int(op, gs_currentdevice(igs)->color_info.num_components);
  89.     return 0;
  90. }
  91.  
  92. /* <alpha> setalpha - */
  93. private int
  94. zsetalpha(register os_ptr op)
  95. {    double alpha;
  96.     int code;
  97.  
  98.     if ( real_param(op, &alpha) < 0 )
  99.       return_op_typecheck(op);
  100.     if ( (code = gs_setalpha(igs, alpha)) < 0 )
  101.       return code;
  102.     pop(1);
  103.     return 0;
  104. }
  105.  
  106. /* <gray> setgray - */
  107. private int
  108. zsetgray(register os_ptr op)
  109. {    double gray;
  110.     int code;
  111.  
  112.     if ( real_param(op, &gray) < 0 )
  113.       return_op_typecheck(op);
  114.     if ( (code = gs_setgray(igs, gray)) < 0 )
  115.       return code;
  116.     make_null(&istate->colorspace.array);
  117.     pop(1);
  118.     return 0;
  119. }
  120.  
  121. /* <red> <green> <blue> setrgbcolor - */
  122. private int
  123. zsetrgbcolor(register os_ptr op)
  124. {    double par[3];
  125.     int code;
  126.  
  127.     if ( (code = num_params(op, 3, par)) < 0 ||
  128.          (code = gs_setrgbcolor(igs, par[0], par[1], par[2])) < 0
  129.        )
  130.         return code;
  131.     make_null(&istate->colorspace.array);
  132.     pop(3);
  133.     return 0;
  134. }
  135.  
  136. /* <proc> settransfer - */
  137. private int
  138. zsettransfer(register os_ptr op)
  139. {    int code;
  140.     check_proc(*op);
  141.     check_ostack(zcolor_remap_one_ostack - 1);
  142.     check_estack(1 + zcolor_remap_one_estack);
  143.     istate->transfer_procs.colored.red =
  144.       istate->transfer_procs.colored.green =
  145.       istate->transfer_procs.colored.blue =
  146.       istate->transfer_procs.colored.gray = *op;
  147.     code = gs_settransfer_remap(igs, gs_mapped_transfer, false);
  148.     if ( code < 0 ) return code;
  149.     push_op_estack(zcolor_reset_transfer);
  150.     pop(1);  op--;
  151.     return zcolor_remap_one(&istate->transfer_procs.colored.gray, op,
  152.                 igs->set_transfer.colored.gray, igs,
  153.                 zcolor_remap_one_finish);
  154. }
  155.  
  156. /* ------ Internal routines ------ */
  157.  
  158. /* Prepare to remap one color component */
  159. /* (also used for black generation and undercolor removal). */
  160. /* Use the 'for' operator to gather the values. */
  161. /* The caller must have done the necessary check_ostack and check_estack. */
  162. int
  163. zcolor_remap_one(const ref *pproc, register os_ptr op, gx_transfer_map *pmap,
  164.   const gs_state *pgs, int (*finish_proc)(P1(os_ptr)))
  165. {    osp = op += 4;
  166.     make_int(op - 3, 0);
  167.     make_int(op - 2, 1);
  168.     make_int(op - 1, transfer_map_size - 1);
  169.     *op = *pproc;
  170.     ++esp;
  171.     make_struct(esp, imemory_space((gs_ref_memory_t *)pgs->memory),
  172.             pmap);
  173.     push_op_estack(finish_proc);
  174.     push_op_estack(zfor_fraction);
  175.     return o_push_estack;
  176. }
  177.  
  178. /* Store the result of remapping a component. */
  179. private int
  180. zcolor_remap_one_store(os_ptr op, floatp min_value)
  181. {    int i;
  182.     gx_transfer_map *pmap = r_ptr(esp, gx_transfer_map);
  183.     if ( ref_stack_count(&o_stack) < transfer_map_size )
  184.       return_error(e_stackunderflow);
  185.     for ( i = 0; i < transfer_map_size; i++ )
  186.     {    double v;
  187.         int code =
  188.           real_param(ref_stack_index(&o_stack,
  189.                          transfer_map_size - 1 - i),
  190.                  &v);
  191.  
  192.         if ( code < 0 )
  193.           return code;
  194.         pmap->values[i] =
  195.           (v < min_value ? float2frac(min_value) :
  196.            v >= 1.0 ? frac_1 :
  197.            float2frac(v));
  198.     }
  199.     ref_stack_pop(&o_stack, transfer_map_size);
  200.     esp--;                /* pop pointer to transfer map */
  201.     return o_pop_estack;
  202. }
  203. int
  204. zcolor_remap_one_finish(os_ptr op)
  205. {    return zcolor_remap_one_store(op, 0.0);
  206. }
  207. int
  208. zcolor_remap_one_signed_finish(os_ptr op)
  209. {    return zcolor_remap_one_store(op, -1.0);
  210. }
  211.  
  212. /* Finally, reset the effective transfer functions and */
  213. /* invalidate the current color. */
  214. int
  215. zcolor_reset_transfer(os_ptr op)
  216. {    gx_set_effective_transfer(igs);
  217.     return zcolor_remap_color(op);
  218. }
  219. int
  220. zcolor_remap_color(os_ptr op)
  221. {    gx_unset_dev_color(igs);
  222.     return 0;
  223. }
  224.  
  225. /* ------ Initialization procedure ------ */
  226.  
  227. BEGIN_OP_DEFS(zcolor_op_defs) {
  228.     {"0currentalpha", zcurrentalpha},
  229.     {"0currentgray", zcurrentgray},
  230.     {"0currentrgbcolor", zcurrentrgbcolor},
  231.     {"0currenttransfer", zcurrenttransfer},
  232.     {"0processcolors", zprocesscolors},
  233.     {"1setalpha", zsetalpha},
  234.     {"1setgray", zsetgray},
  235.     {"3setrgbcolor", zsetrgbcolor},
  236.     {"1settransfer", zsettransfer},
  237.         /* Internal operators */
  238.     {"1%zcolor_remap_one_finish", zcolor_remap_one_finish},
  239.     {"1%zcolor_remap_one_signed_finish", zcolor_remap_one_signed_finish},
  240.     {"0%zcolor_reset_transfer", zcolor_reset_transfer},
  241.     {"0%zcolor_remap_color", zcolor_remap_color},
  242. END_OP_DEFS(0) }
  243.